Clover coverage report - Enterprise Web Services - 1.0
Coverage timestamp: Mon May 30 2005 17:10:32 CEST
file stats: LOC: 59   Methods: 2
NCLOC: 35   Classes: 1
30 day Evaluation Version distributed via the Maven Jar Repository. Clover is not free. You have 30 days to evaluate it. Please visit http://www.thecortex.net/clover to obtain a licensed version of Clover
 
 Source file Conditionals Statements Methods TOTAL
JOnASDDWriter.java 0% 0% 0% 0%
coverage
 1   
 /*
 2   
  * Copyright 2001-2004 The Apache Software Foundation.
 3   
  * 
 4   
  * Licensed under the Apache License, Version 2.0 (the "License");
 5   
  * you may not use this file except in compliance with the License.
 6   
  * You may obtain a copy of the License at
 7   
  * 
 8   
  *      http://www.apache.org/licenses/LICENSE-2.0
 9   
  * 
 10   
  * Unless required by applicable law or agreed to in writing, software
 11   
  * distributed under the License is distributed on an "AS IS" BASIS,
 12   
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13   
  * See the License for the specific language governing permissions and
 14   
  * limitations under the License.
 15   
  */
 16   
 package org.apache.geronimo.ews.ws4j2ee.toWs.dd.jonas;
 17   
 
 18   
 import org.apache.geronimo.ews.ws4j2ee.context.J2EEWebServiceContext;
 19   
 import org.apache.geronimo.ews.ws4j2ee.toWs.AbstractWriter;
 20   
 import org.apache.geronimo.ews.ws4j2ee.toWs.GenerationConstants;
 21   
 import org.apache.geronimo.ews.ws4j2ee.toWs.GenerationFault;
 22   
 
 23   
 /**
 24   
  * @author sauthieg
 25   
  */
 26   
 public class JOnASDDWriter extends AbstractWriter {
 27  0
     public JOnASDDWriter(J2EEWebServiceContext j2eewscontext) throws GenerationFault {
 28  0
         super(j2eewscontext, j2eewscontext.getMiscInfo().getOutPutPath() +
 29   
                 "/ejb/META-INF/JonAs.xml");
 30   
     }
 31   
 
 32  0
     public void writeCode() throws GenerationFault {
 33  0
         String ejbname = j2eewscontext.getWSDLContext().getTargetPortType().getName().toLowerCase();
 34  0
         int index = ejbname.lastIndexOf(".");
 35  0
         if (index > 0) {
 36  0
             ejbname = ejbname.substring(index + 1);
 37   
         }
 38  0
         out.write("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n");
 39  0
         out.write("<jonas-ejb-jar xmlns=\"http://www.objectweb.org/jonas/ns\"\n");
 40  0
         out.write("               xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"\n");
 41  0
         out.write("               xsi:schemaLocation=\"http://www.objectweb.org/jonas/ns\"\n");
 42  0
         out.write("                                    http://www.objectweb.org/jonas/ns/jonas-ejb-jar_4_0.xsd\">\n");
 43  0
         out.write("    <jonas-session>\n");
 44  0
         out.write("      <ejb-name>" + j2eewscontext.getMiscInfo().getJ2eeComponetLink() + "</ejb-name>\n");
 45  0
         String implStyle = j2eewscontext.getMiscInfo().getImplStyle();
 46  0
         if (GenerationConstants.USE_LOCAL_AND_REMOTE.equals(implStyle)
 47   
                 || GenerationConstants.USE_REMOTE.equals(implStyle)) {
 48  0
             out.write("      <jndi-name>" + j2eewscontext.getMiscInfo().getJ2eeComponetLink() + "</jndi-name>\n");
 49   
         }
 50  0
         if (GenerationConstants.USE_LOCAL_AND_REMOTE.equals(implStyle)
 51   
                 || GenerationConstants.USE_LOCAL.equals(implStyle)) {
 52   
             //TODO fill this what is the correct tag for JonAs    
 53   
             //out.write("      <local-jndi-name>" + "ejb/" +ejbname+ "Local"+"</local-jndi-name>\n");
 54   
         }
 55  0
         out.write("    </jonas-session>\n");
 56  0
         out.write("</jonas-ejb-jar>\n");
 57   
     }
 58   
 }
 59